home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 June
/
EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso
/
earcd
/
comm2
/
mm_1_2.lha
/
MM
/
Rexx
/
MM_CRCFile.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-04-30
|
266b
|
18 lines
/*
** This script shows how find the CRC-32 of a file
*/
address 'MAILMANAGER'
file = 'SYS:'
MM_FileReq 'file'
if RC = 0 THEN DO
MM_CRCFile file 'crc'
text = 'Il CRC-32 di b' file 'nè:b' crc
gadget = "*_Ok"
MM_Requester 'CRC-32' 'text' 'gadget'
END
exit